6.6 Assume that myList is (a reference to) an ArrayList object and that both i and j are int
variables with values in the range from 0 to myList.size() -1, inclusive. Hypothesize what the following accomplishes, and then test your hypothesis.
myList.set (i, myList.set (j, myList.get (i)));
 
 
View Solution
 
 
 
<< Back Next >>